Module suction cup

Compatible models: myCobot 320, myCobot Pro 630

product icon

pi

Specifications

name Module suction cup
model myCobotPro_suctionPump
Material Nylon 7100
Number of suction cups 1/2/4
Suction cup size diameter 33mm
absorb weight Maximum 1000g
Power source equipment Suction and blowing integrated air compressor
service life one year
a fixed way screw fixed
control interface I/O control
Use environment requirements Temperature and pressure
Applicable equipment ER myCobot 320 series, ER myCobot Pro 630 series

Suction cup suction pump: used for adsorbing objects

Introduction

  • Suction cup suction pump is that the suction port is connected with the object to be adsorbed through suction cups, tubes and other components, and vacuumizes the suction cup, causing the internal air pressure to change from normal pressure to negative pressure. The pressure difference between the external atmospheric pressure and this negative pressure is used to achieve adsorption. The purpose of living objects.

  • The overall structure is a multi-functional expandable suction cup, which can be installed up to 4; high-pressure resistant hose, which can be reused many times; an air compressor with suction and blowing integrated, which can be expanded to other functions.

working principle

  • Start the suction of the vacuum equipment to generate negative air pressure in the suction cup, so that the object to be lifted can be sucked firmly, and the object to be lifted can be started to be transported.

  • When the object to be lifted is transported to the destination, inflate it smoothly into the vacuum suction cup, so that the negative air pressure in the vacuum suction cup becomes zero or slightly positive air pressure, and the vacuum suction cup is separated from the object to be lifted, thus completing the lifting and conveying of heavy objects task.

Applicable objects : suitable for objects with flat surfaces

Appearance introduction

  • Multifunctional expandable suction cups, can install up to 4

pi

  • High pressure resistant hose, can be reused many times

    pi

  • Suction and blowing integrated air compressor, can expand other functions

    pi

Installed for use

  • Required for use with an air compressor: alt text

    1. Insert the black plug into the plug;

    2. insert the matching red hose into the socket on the machine:
      alt text

    3. The red button is the on/off switch, pulling it outwards turns it on, pressing it back turns the machine off: alt text
  • Suction cup mounting:

    You can view the installation instructions for the corresponding accessories in the video:

    1. Connect the other end of the air compressor red hose to the solenoid valve connection:
      alt text
    2. Use the clear hose that comes with the modular suction cup to connect to the connection above the solenoid valve and to the hose branch of the modular suction cup:
      alt text
      alt text
    3. Secure the module suction cup to the end of the robot arm with the matching screws:
      alt text
    4. Attach the hose branch to the modular suction cup:
      alt text
  • Electrical connection:

    1. Connect the black wire to the GND of the robot arm base, and the red wire to any one of OUT1~OUT6, and change the pin number of the subsequent programme according to the interface you choose, here we use OUT1: alt text
  • Software driver test:

    Test that the suction cup is available after installation, using myBlockly test myblockly 下载

    1. After confirming that the structural and electrical connections are complete, start the robot arm and open the myblockly software when the graphical interface appears.
    2. Modify the baud rate to 115200:
    3. Find Base in the list on the left and select the Set Pin Out module:
    4. Set pin number to 1 and output to 0:
    5. Find Time and select the Sleep module:
    6. Set the time as required, here set to 2s:
    7. Repeat the above steps for the final setup as follows:
    8. Hold the suction cup against the object and click the green Run button in the upper right corner to allow the suction cup to hold the object for 2s before releasing it.
  • Programming Development:

    Programming Development for Suckers using python python 环境下载

    1. Create a new python file:
      Right click on the desired file path to create a new python file:

      The name of the file can be changed as needed

    2. Perform functional programming:

      The code is as follows:

      • Pi Version:
      from pymycobot.mycobot import MyCobot
      from pymycobot import PI_PORT, PI_BAUD  # When using the Raspberry Pi version of mycobot, these two variables can be referenced for MyCobot initialisation
      import time
      
      # Initialise a MyCobot object
      mc = MyCobot(PI_PORT, 115200)
      
      # Controls suction cup closed-open:
      # Use suction cup status interface 0 for open, 1 for closed
      mc.set_basic_output(1, 0)
      time.sleep(2)
      mc.set_basic_output(1, 1)
      time.sleep(2)
      
      # Check out the python API for details on how to use the interface.
      
    3. Save the file and close it, and open a command-line terminal by right-clicking on an empty space in the folder.

      Input:

      python ModularPump.py
      

      You can see that the suction cup is closed-open

results matching ""

    No results matching ""